GET api/BusinessIntelligence/GetSearchwords?searchwordIds[0]={searchwordIds[0]}&searchwordIds[1]={searchwordIds[1]}
Request Information
URI Parameters
Name | Description | Type | Additional Information |
---|---|---|---|
searchwordIds | Collection of integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of SearchwordDataDtoName | Description | Type | Additional Information |
---|---|---|---|
Id |
The internal id of the searchword in Epsilon. |
integer |
None. |
Name |
The name of the searchword. |
string |
None. |
Code |
The searchword code. |
string |
None. |
ParentId |
The id of the searchword's parent searchword. |
integer |
None. |
Deleted |
The deletion status of the searchword. True if it's removed, false if it is still active. |
boolean |
None. |
RootId |
The internal id of the root searchword. |
integer |
None. |
RootName |
The name of the root searchword. |
string |
None. |
RootCode |
The root searchword code. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": 1, "Name": "sample string 2", "Code": "sample string 3", "ParentId": 4, "Deleted": true, "RootId": 6, "RootName": "sample string 7", "RootCode": "sample string 8" }, { "Id": 1, "Name": "sample string 2", "Code": "sample string 3", "ParentId": 4, "Deleted": true, "RootId": 6, "RootName": "sample string 7", "RootCode": "sample string 8" } ]
application/xml, text/xml
Sample:
<ArrayOfSearchwordDataDto xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SearchwordDataDto> <Id>1</Id> <Name>sample string 2</Name> <Code>sample string 3</Code> <ParentId>4</ParentId> <Deleted>true</Deleted> <RootId>6</RootId> <RootName>sample string 7</RootName> <RootCode>sample string 8</RootCode> </SearchwordDataDto> <SearchwordDataDto> <Id>1</Id> <Name>sample string 2</Name> <Code>sample string 3</Code> <ParentId>4</ParentId> <Deleted>true</Deleted> <RootId>6</RootId> <RootName>sample string 7</RootName> <RootCode>sample string 8</RootCode> </SearchwordDataDto> </ArrayOfSearchwordDataDto>